.infobox-container {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    width: auto;
}
.infobox {
	/*width: 250px*/
    width: 270px;
    padding: 10px 5px 5px 5px;
    margin:10px;
    position: relative;
    z-index: 90;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.55);
    box-shadow: 0px 0px 3px rgba(0,0,0,0.55);
    background: #C0C0C0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#C0C0C0), to(#C0C0C0));
    background-image: -moz-linear-gradient(top,#C0C0C0,#C0C0C0);
    color: #fff;
    font-size: 90%;
}
.infobox h3 {
    position: relative;
	/*width:270px;*/
    width: 290px;
    color: #C0C0C0;
    padding: 10px 5px;
    margin: 0;
    left: -15px;
    z-index: 100;
    -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.55);
    box-shadow: 0px 0px 3px rgba(0,0,0,0.55);
    background:#FFFFFF;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FFFFFF));
    background-image: -moz-linear-gradient(top,#FFFFFF,#FFFFFF);
    font-size: 160%;
    text-align: center;
    /*text-shadow: #2187c8 0 -1px 1px;*/
    font-weight: bold;
}
 
.infobox-container .triangle-l {
    border-color: transparent #DA007A transparent transparent;
    border-style:solid;
    border-width:13px;
    height:0;
    width:0;
    position: absolute;
    left: -12px;
    top: 54px;
    z-index: 0; /* displayed under infobox */
}
.infobox-container .triangle-r {
    border-color: transparent transparent transparent #DA007A;
    border-style:solid;
    border-width:13px;
    height:0;
    width:0;
    position: absolute;
	/*left:266px;*/
    left: 286px;
    top: 54px;
    z-index: 0; /* displayed under infobox */
}
.infobox a {
    color: #DA007A;
    text-decoration: none;
    border-bottom: 1px dotted transparent;
}
.infobox a:hover, .infobox a:focus {
    text-decoration: none;
    border-bottom: 1px dotted #DA007A;
}